home *** CD-ROM | disk | FTP | other *** search
- VERSION 2.00
- Begin Form frmDest
- BackColor = &H0000FFFF&
- Caption = "The DEST Program"
- ClientHeight = 2550
- ClientLeft = 1095
- ClientTop = 1485
- ClientWidth = 7185
- Height = 2955
- Icon = DEST.FRX:0000
- Left = 1035
- LinkTopic = "Form1"
- ScaleHeight = 2550
- ScaleWidth = 7185
- Top = 1140
- Width = 7305
- Begin TextBox txtFromSource
- Height = 855
- Left = 240
- MultiLine = -1 'True
- ScrollBars = 3 'Both
- TabIndex = 2
- Top = 600
- Width = 6735
- End
- Begin CommandButton cmdLink
- Caption = "&Link"
- Height = 855
- Left = 1440
- TabIndex = 1
- Top = 1560
- Width = 1215
- End
- Begin CommandButton cmdExit
- Caption = "E&xit"
- Height = 495
- Left = 120
- TabIndex = 0
- Top = 1920
- Width = 1215
- End
- Begin Label Label1
- Alignment = 2 'Center
- BackColor = &H0000FFFF&
- Caption = "The following text came from SOURCE.EXE:"
- FontBold = -1 'True
- FontItalic = 0 'False
- FontName = "MS Sans Serif"
- FontSize = 13.5
- FontStrikethru = 0 'False
- FontUnderline = 0 'False
- Height = 375
- Left = 360
- TabIndex = 3
- Top = 120
- Width = 6615
- End
- Option Explicit
- Sub cmdExit_Click ()
- End
- End Sub
- Sub cmdLink_Click ()
- ' Set the topic
- txtFromSource.LinkTopic = "SOURCE|Dummy"
- ' Set the item
- txtFromSource.LinkItem = "txtToDest"
- ' Establish DDE
- txtFromSource.LinkMode = 1
- End Sub
-